Write a C# Sharp program to remove all "a" in each string in given list of strings and return the new string

  • برمجة سي شارب
  • برمجة

Write a C# Sharp program to remove all "a" in each string in given list of strings and return the new string

Sample Output:

bc cdef js php

الأجوبة

using System;
using System.Collections.Generic;
using System.Linq;

namespace exercises
{
   class Program
    {       
        static void Main(string[] args)
        {         
           List<string> mylist = test(new List<string>(new string[] { "abc", "cdaef", "js" , "php" }));                  
           foreach(var i in mylist)
            {
               Console.Write(i.ToString()+" ");
            }     
        }                  
        public static List<string> test(List<string> str)
          {
           return str.Select(x => x.Replace("a", "")).ToList();
          }    
    } 
}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...